blob: 25281cd6a3c73349fb571c36075f6ac1747eb80f (
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
|
# $Id: PKGBUILD 214979 2014-06-11 09:29:17Z jgc $
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=appdata-tools
pkgver=0.1.8
pkgrel=1
pkgdesc="command line program designed to validate AppData descriptions for standards compliance and to the style guide"
arch=('i686' 'x86_64')
url="https://github.com/hughsie/appdata-tools/"
license=('GPL')
depends=('appstream-glib')
makedepends=('intltool')
source=(http://people.freedesktop.org/~hughsient/releases/appdata-tools-$pkgver.tar.xz)
md5sums=('47d8500b7b96fac6667c3173c77c1e66')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
|