mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:07:14 +08:00
23 lines
530 B
Bash
23 lines
530 B
Bash
pkgname=libirman
|
|
pkgver=0.4.5
|
|
pkgrel=1
|
|
pkgdesc="Irman driver lcd library"
|
|
arch=('x86_64')
|
|
url="http://www.lirc.org"
|
|
license=('LGPL')
|
|
backup=('etc/irman.conf')
|
|
depends=('glibc')
|
|
source=("http://downloads.sourceforge.net/lirc/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('4a2708d53b6c79659c073cfefed57f78')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|