blob: 3e08c15cb9e2834d8e1cd63c9f0767fc53ac0e51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: David Seus <archstuff at archlinux.net>
# Contributor Max Meyer <dev at [f}edux d0t org>
pkgname=geteltorito
pkgver=0.6
pkgrel=1
pkgdesc="A El Torito boot image extractor"
arch=(any)
url="https://raw.githubusercontent.com/rainer042/geteltorito/main/geteltorito.pl"
license=('GPL2')
depends=('perl')
changelog=
install="${pkgname}.install"
source=("https://raw.githubusercontent.com/rainer042/geteltorito/main/geteltorito.pl")
noextract=(${pkgname}.pl)
sha256sums=('625a03d2b29564d5c873979aa5757e9c8c9d40e373e5b060bd9b9973400e0578')
package() {
cd "${srcdir}/"
install -o root -g root -m 755 -D ${pkgname}.pl "$pkgdir/usr/bin/${pkgname}.pl"
}
# vim:set ts=2 sw=2 et:
|