blob: 6bf1ef7a67c795d0dafe917e5a0379b349464f7f (
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
|
# Maintainer: Brian Bidulock <bidulock@openss7.org>
pkgname=pacana
pkgver=0.13
pkgrel=2
pkgdesc="Pacman repository analysis tool"
arch=('i686' 'x86_64')
url="https://github.com/bbidulock/pacana"
license=('GPL')
depends=('pacman' 'json-c')
source=("https://github.com/bbidulock/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.lz")
md5sums=('4382596088dc641288e3af2616751b44')
build() {
cd $pkgname-$pkgver
./configure
# Fight unused direct deps
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
|