Initial PKGBUILD status as of 28.11.2014

This commit is contained in:
Jaroslav Lichtblau 2014-11-28 20:17:14 +01:00
commit 458fe13717
2 changed files with 37 additions and 0 deletions

14
.SRCINFO Normal file
View file

@ -0,0 +1,14 @@
pkgbase = libpuzzle
pkgdesc = The Puzzle library is designed to quickly find visually similar images.
pkgver = 0.11
pkgrel = 1
url = http://libpuzzle.pureftpd.org/project/libpuzzle
arch = i686
arch = x86_64
license = BSD
depends = gd
source = http://download.pureftpd.org/pub/pure-ftpd/misc/libpuzzle/releases/libpuzzle-0.11.tar.bz2
md5sums = f9edc7322c6f422be395244eefbda180
pkgname = libpuzzle

23
PKGBUILD Normal file
View file

@ -0,0 +1,23 @@
# Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
pkgname=libpuzzle
pkgver=0.11
pkgrel=1
pkgdesc="The Puzzle library is designed to quickly find visually similar images."
arch=('i686' 'x86_64')
url="http://libpuzzle.pureftpd.org/project/libpuzzle"
license=('BSD')
depends=('gd')
source=(http://download.pureftpd.org/pub/pure-ftpd/misc/$pkgname/releases/$pkgname-$pkgver.tar.bz2)
md5sums=('f9edc7322c6f422be395244eefbda180')
build() {
cd "${srcdir}/$pkgname-$pkgver"
./configure --prefix=/usr
make || return 1
make DESTDIR="${pkgdir}" install
install -D -m644 "${srcdir}/$pkgname-$pkgver/COPYING" "${pkgdir}/usr/share/licenses/$pkgname/COPYING"
}