summaryrefslogtreecommitdiff
path: root/community/pkgfile/PKGBUILD
blob: 7aff4d66f7d2fbaf79254e2be38dc73fc3dfabde (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
# $Id: PKGBUILD 75830 2012-09-02 00:43:15Z dreisner $
# Maintainer: Dave Reisner <dreisner@archlinux.org>

pkgname=pkgfile
pkgver=4
pkgrel=1
pkgdesc="a pacman .files metadata explorer"
arch=('i686' 'x86_64')
url="http://github.com/falconindy/pkgfile"
license=('MIT')
depends=('libarchive' 'curl' 'pcre' 'pacman')
conflicts=('pkgtools<24-2')
makedepends=('perl')
source=("https://github.com/downloads/falconindy/$pkgname/$pkgname-$pkgver.tar.xz")
install=pkgfile.install
md5sums=('2570c69372645d2463979c7227a0a63d')

build() {
  cd "$pkgname-$pkgver"
  ./configure
  make
}

package() {
  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
}

# vim: ft=sh syn=sh