summaryrefslogtreecommitdiff
path: root/libre/pacman/rePKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-04-06 00:05:46 -0700
committerroot <root@rshg054.dnsready.net>2013-04-06 00:05:46 -0700
commitfd8249d016683ade99a23251d6ffdf5d5a3e76a4 (patch)
treede9e45e44e9a8ffb85bd8895dcec0ebcd34d17e3 /libre/pacman/rePKGBUILD
parent3c7a59bfd2b8340068df7dc196e0c9b612b9ef31 (diff)
Sat Apr 6 00:05:46 PDT 2013
Diffstat (limited to 'libre/pacman/rePKGBUILD')
-rw-r--r--libre/pacman/rePKGBUILD37
1 files changed, 0 insertions, 37 deletions
diff --git a/libre/pacman/rePKGBUILD b/libre/pacman/rePKGBUILD
deleted file mode 100644
index 810eff5b9..000000000
--- a/libre/pacman/rePKGBUILD
+++ /dev/null
@@ -1,37 +0,0 @@
-# Maintainer: Nicolas Reynolds <fauno@kiwwwi.com.ar>
-source PKGBUILD
-unset build package md5sums source check
-_repo=core
-source=(PKGBUILD
- ftp://ftp.archlinux.org/${_repo}/os/${CARCH}/${pkgname%-libre}-$pkgver-$pkgrel-$CARCH$PKGEXT
- # files for pkg modifications
- pacman.conf
- pacman.conf.x86_64
- )
-options=(!strip)
-
-build() {
- cd "${srcdir}/"
- rm -vf .{INSTALL,PKGINFO} ${srcdir}/${pkgname%-libre}-$pkgver-$pkgrel-$CARCH$PKGEXT
- # put actions for package modifications below this line
-
-}
-
-package() {
- cp -a ${srcdir}/* ${pkgdir}
-
- rm ${pkgdir}/{PKGBUILD,pacman.conf{,.x86_64}}
-
-# No need to repackage for mips64el
- case "$CARCH" in
- i686)
- install -m644 $srcdir/pacman.conf $pkgdir/etc/pacman.conf
- ;;
- x86_64)
- install -m644 $srcdir/pacman.conf.x86_64 $pkgdir/etc/pacman.conf
- ;;
- esac
-}
-
-
-# vim:set ts=2 sw=2 et: