mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 17:47:13 +08:00
30 lines
698 B
Bash
30 lines
698 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=libraw1394
|
|
pkgver=2.0.7
|
|
pkgrel=1
|
|
arch=('i686' 'x86_64')
|
|
license=('LGPL2.1')
|
|
pkgdesc="Provides an API to the Linux IEEE1394 (FireWire) driver"
|
|
depends=('glibc')
|
|
makedepends=('pkgconfig')
|
|
url="https://ieee1394.wiki.kernel.org/index.php/Main_Page"
|
|
options=(!libtool)
|
|
source=(ftp://ftp.kernel.org/pub/linux/libs/ieee1394/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('997ef18ab8e2e21f3966dff00e92be28')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
} |