mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 02:04:37 +08:00
24 lines
616 B
Bash
24 lines
616 B
Bash
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/libieee1284
|
|
|
|
pkgname=libieee1284
|
|
pkgver=0.2.11
|
|
pkgrel=4
|
|
pkgdesc="A library to query devices connected in parallel port."
|
|
arch=('x86_64')
|
|
license=('GPL2')
|
|
url="http://cyberelk.net/tim/libieee1284"
|
|
depends=('python2')
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('b8fff9f3d121531bc17430e3f4ea6ed0')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr --mandir=/usr/share/man
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir"/ install
|
|
}
|