desktop/pkgfile/PKGBUILD
2013-03-23 17:32:45 +00:00

36 lines
785 B
Bash

# Maintainer: abveritas@chakra-project.org
# Contributor: Dave Reisner <dreisner@archlinux.org>
pkgname=pkgfile
pkgver=8
pkgrel=1
pkgdesc="a pacman .files metadata explorer"
arch=('x86_64')
url="http://github.com/falconindy/pkgfile"
license=('MIT')
depends=('libarchive' 'curl' 'pcre' 'pacman')
options=(!strip)
source=("http://code.falconindy.com/archive/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
install=pkgfile.install
md5sums=('772d02872ddf112c5e24d6ad40e5623d'
'712c546c0291975e646a1d2170034e10')
build() {
cd "$pkgname-$pkgver"
./configure
make
# generate a license file
sed '/\*\//q' src/pkgfile.c >LICENSE
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}