blob: b511f1d4ab38b119d2fdfeef1b0fb88ccd5cdbc0 (
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.21
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=('3250a53bd72e225878ec1e6c165a4632f1d3f2d71565e404f48d579a4513913f'
'SKIP')
b2sums=('e07bf405a46764a1d7898cf3680f1157f240636a33bb1eb3e82b5ee65aff44316f2847c62561b2e8f44b4d5e3a85b8aff47d8c37bf2270c0936c90643443e9e9'
'SKIP')
validpgpkeys=('A5143BB56952B3189F49A175FAC4560863BEEC34') # Laurent Jourden
package() {
cd "${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" PREFIX="/usr" install
}
|