mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
29 lines
528 B
Bash
29 lines
528 B
Bash
|
|
|
|
|
|
# Maintainer abveritas@chakra-project@org>
|
|
|
|
pkgname=libdmtx
|
|
pkgver=0.7.4
|
|
pkgrel=2
|
|
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
|
|
}
|