hfc

Hosts file client
git clone git://git.marlonivo.com/hfc
Log | Files | Refs | LICENSE

PKGBUILD (433B)


      1 pkgname=hfc
      2 pkgver=0.1
      3 pkgrel=1
      4 pkgdesc="hfc - hosts file client"
      5 arch=('x86_64')
      6 url="https://git.marlonivo.com/hfc/log.html"
      7 license=('MIT')
      8 depends=('curl' 'ncurses')
      9 makedepends=('gcc' 'make')
     10 source=()
     11 md5sums=()
     12 
     13 build() {
     14     make
     15 }
     16 
     17 package() {
     18     install -Dm755 hfc "$pkgdir/usr/bin/hfc"
     19     install -Dm644 hfc.1 "$pkgdir/usr/share/man/man1/hfc.1"
     20     install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
     21 }