Added libcdio-0.82 build template.

--HG--
extra : convert_revision : 9a0990d2a095a5968bbe0e51b6ecab4c67bc179e
This commit is contained in:
Juan RP 2009-12-30 20:56:20 +01:00
parent 933ff2e7c7
commit bc0e01cb3c
4 changed files with 46 additions and 0 deletions

1
srcpkgs/libcdio-devel Symbolic link
View File

@ -0,0 +1 @@
libcdio

2
srcpkgs/libcdio/depends Normal file
View File

@ -0,0 +1,2 @@
abi_depends=">=0.8"
api_depends="${abi_depends}"

View File

@ -0,0 +1,20 @@
# Template file for 'libcdio-devel'.
#
short_desc="${short_desc} (development files)"
long_desc="${long_desc}
This package contains files for development, headers, static libs, etc."
Add_dependency run ncurses-devel
Add_dependency run libcddb-devel
Add_dependency run libcdio
do_install()
{
mkdir -p ${DESTDIR}/usr/lib ${DESTDIR}/usr/share
mv ${SRCPKGDESTDIR}/usr/include ${DESTDIR}/usr
mv ${SRCPKGDESTDIR}/usr/lib/pkgconfig ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/lib/*.*a ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/lib/*.so ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/share/info ${DESTDIR}/usr/share
}

23
srcpkgs/libcdio/template Normal file
View File

@ -0,0 +1,23 @@
# Template file for 'libcdio'
pkgname=libcdio
version=0.82
distfiles="http://ftp.gnu.org/gnu/libcdio/$pkgname-$version.tar.gz"
build_style=gnu_configure
short_desc="CD-ROM access library"
maintainer="Juan RP <xtraeme@gmail.com>"
checksum=1acb3de8e0927906ade7a34c5853173d3068b87b02dfba80d0bf11e47f0b5d39
long_desc="
This library is to encapsulate CD-ROM reading and
control. Applications wishing to be oblivious of the OS- and
device-dependent properties of a CD-ROM can use this library.
Some support for disk image types like BIN/CUE and NRG is available,
so applications that use this library also have the ability to read
disc images as though they were CDs."
subpackages="$pkgname-devel"
Add_dependency run glibc
Add_dependency run ncurses
Add_dependency run libcddb
Add_dependency build ncurses-devel
Add_dependency build libcddb-devel