diff options
Diffstat (limited to 'libre/filesystem')
-rw-r--r-- | libre/filesystem/PKGBUILD | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/libre/filesystem/PKGBUILD b/libre/filesystem/PKGBUILD index fb422594c..51e1c0810 100644 --- a/libre/filesystem/PKGBUILD +++ b/libre/filesystem/PKGBUILD @@ -1,13 +1,13 @@ -# $Id: PKGBUILD 172494 2012-12-04 01:05:09Z tomegun $ +# $Id: PKGBUILD 175758 2013-01-21 11:40:12Z allan $ # Maintainer: Tom Gundersen <teg@jklm.no> # Maintainer (Parabola): Nicolás Reynolds <fauno@kiwwwi.com.ar> # Maintainer (Parabola): André Silva <emulatorman@lavabit.com> pkgname=filesystem -pkgver=2012.12 +pkgver=2013.01 pkgrel=1 pkgdesc='Base filesystem for Parabola' -arch=('any') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url='https://parabolagnulinux.org' groups=('base') @@ -78,6 +78,15 @@ package() { done # + # add lib symlinks + # + ln -s usr/lib ${pkgdir}/lib + [[ ${CARCH} = "x86_64" ]] && ( + ln -s usr/lib ${pkgdir}/lib64 + ln -s lib ${pkgdir}/usr/lib64 + ) + + # # install parabola(7) manpage # install -D -m644 ${srcdir}/parabola.7 usr/share/man/man7/parabola.7 |