core/libraw1394/PKGBUILD

27 lines
724 B
Bash
Raw Normal View History

# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/libraw1394
2010-03-14 23:48:48 +08:00
pkgname=libraw1394
pkgver=2.1.1
2010-03-14 23:48:48 +08:00
pkgrel=1
arch=('x86_64')
2010-03-14 23:48:48 +08:00
license=('LGPL2.1')
pkgdesc="Provides an API to the Linux IEEE1394 (FireWire) driver"
depends=('glibc')
makedepends=('pkgconfig')
2012-05-07 13:05:44 +08:00
url="https://ieee1394.wiki.kernel.org/index.php/Main_Page"
options=(!libtool)
source=(ftp://ftp.kernel.org/pub/linux/libs/ieee1394/${pkgname}-${pkgver}.tar.xz)
sha256sums=('1bab9780189f9d1eb4e973df12679c04f979c21e024240fc98e536ff5b680ee9')
2010-03-14 23:48:48 +08:00
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
2012-05-07 13:05:44 +08:00
./configure --prefix=/usr
make
2010-03-14 23:48:48 +08:00
}
2012-05-07 13:05:44 +08:00
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}