diff options
Diffstat (limited to 'community-testing/cdfs')
-rw-r--r-- | community-testing/cdfs/PKGBUILD | 32 | ||||
-rw-r--r-- | community-testing/cdfs/cdfs.install | 11 |
2 files changed, 0 insertions, 43 deletions
diff --git a/community-testing/cdfs/PKGBUILD b/community-testing/cdfs/PKGBUILD deleted file mode 100644 index af18a5dbb..000000000 --- a/community-testing/cdfs/PKGBUILD +++ /dev/null @@ -1,32 +0,0 @@ -# $Id: PKGBUILD 42474 2011-03-16 21:46:25Z spupykin $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Contributor: J. Santiago Hirschfeld <jsantiagoh@yahoo.com.ar> - -pkgname=cdfs -pkgver=2.6.27 -pkgrel=14 -pkgdesc="File system module that 'exports' all tracks and boot images on a CD as normal files." -arch=(i686 x86_64) -url="http://www.elis.UGent.be/~ronsse/cdfs/" -license=('GPL') -install=cdfs.install -source=("http://www.elis.UGent.be/~ronsse/cdfs/download/$pkgname-$pkgver.tar.bz2") -md5sums=('ac64c014a90e3c488394832ea29605b3') - -build() { - _kernver=`pacman -Q kernel26 | cut -d . -f 3 | cut -f 1 -d -` - depends=("kernel26>=2.6.${_kernver}" "kernel26<2.6.`expr ${_kernver} + 1`") - - cd $srcdir/$pkgname-$pkgver - - patch cddata.c <<EOF -85c85 -< .sendfile = generic_file_sendfile ---- -> // .sendfile = generic_file_sendfile -EOF - - make - mkdir -p $pkgdir/lib/modules/`uname -r`/extra - cp cdfs.ko $pkgdir/lib/modules/`uname -r`/extra -} diff --git a/community-testing/cdfs/cdfs.install b/community-testing/cdfs/cdfs.install deleted file mode 100644 index 3693d60ed..000000000 --- a/community-testing/cdfs/cdfs.install +++ /dev/null @@ -1,11 +0,0 @@ -post_install() { - /sbin/depmod -a -} - -post_upgrade() { - /sbin/depmod -a -} - -post_remove() { - /sbin/depmod -a -} |