desktop/libdmtx/PKGBUILD
AlmAck b52ea9f304 Fix: the url is not an array, but a string
removed gtk-integration, not packaged anymore
2018-05-15 19:49:44 +02:00

23 lines
477 B
Bash

pkgname=libdmtx
pkgver=0.7.4
pkgrel=3
pkgdesc="software for reading and writing Data Matrix 2D barcodes"
url='http://www.libdmtx.org/'
arch=('x86_64')
license=('GPL-2')
depends=('imagemagick')
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz")
md5sums=('9d9d87f489f0d5b3727d00b784e04c33')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR=$pkgdir install
}