24 lines
577 B
Bash
24 lines
577 B
Bash
# Maintainer: Jack L. Frost <fbt@fleshless.org>
|
|
# % Trigger: 1434966060 %
|
|
|
|
pkgname='ufw-tools'
|
|
pkgver='1.12.1'
|
|
pkgrel='2'
|
|
pkgdesc='A set of tools for zerofiles.org (8fw.me)'
|
|
url="https://git.fleshless.org/$pkgname"
|
|
arch=( 'any' )
|
|
license=( 'ISC' )
|
|
depends=( 'bash' 'jshon' 'curl' )
|
|
replaces=( 'zfh-tools' )
|
|
|
|
source=( "https://git.fleshless.org/$pkgname/snapshot/${pkgname}-${pkgver}.tar.gz" )
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
install -Dm755 ufw "$pkgdir/usr/bin/ufw"
|
|
install -Dm755 ufwd "$pkgdir/usr/bin/ufwd"
|
|
}
|
|
|
|
sha1sums=('082f1023e224f0efea9adc31f096a69f51cb9f2c')
|