blob: 8f26533893516788995f267f457cedb325cd8445 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Maintainer: Laurent Jourden <laurent85@enarel.fr>
pkgname=archuseriso
pkgver=0.8.10
pkgrel=1
pkgdesc="Set of bash script programs for building bootable images of Arch Linux"
arch=('any')
url="https://github.com/laurent85v/archuseriso"
license=('GPL3')
depends=('arch-install-scripts' 'bash' 'dosfstools' 'e2fsprogs' 'erofs-utils' 'grub' 'libarchive' 'libisoburn' 'make' 'mtools' 'parted' 'squashfs-tools' 'syslinux')
optdepends=('devtools: for building ZFS packages'
'edk2-ovmf: for emulating UEFI with aui-run'
'erofs-utils: for experimental EROFS support in aui-mkiso'
'f2fs-tools: for F2FS file system option'
'openssl: for codesigning support when building netboot artifacts'
'pacman-contrib: for building ZFS packages'
'qemu-desktop: virtual machine for aui-run testings')
conflicts=('archuseriso')
source=("http://dl.gnutux.fr/sources/${pkgname}/${pkgname}-${pkgver}.tar.gz"
"http://dl.gnutux.fr/sources/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig")
sha256sums=('970ac5b3ad9d7987e7f592325905d6ac61920a1f2b1b366ac61b7ccbd9290c6c'
'SKIP')
b2sums=('da65399f7921d134168428e6b50df0e2555ba6eb6680fa815bc7bbd6d81fc0beb31427d0522cd5a72cd1d2c8c6e7b8d0e78735337da68f3cbf355fd989f6f836'
'SKIP')
validpgpkeys=('A5143BB56952B3189F49A175FAC4560863BEEC34') # Laurent Jourden
package() {
cd "${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" PREFIX="/usr" install
}
|