diff options
author | felics | 2018-04-30 19:52:46 +0200 |
---|---|---|
committer | felics | 2018-04-30 19:52:46 +0200 |
commit | 5253b3769aa35a721b06ba1caf75278379e9f3f8 (patch) | |
tree | ec0af59b2dd589e10cbf6a83a810487b62aab0b4 | |
parent | e0fb17ed648e191618eb9ecf107c5297ba5101c3 (diff) | |
download | aur-5253b3769aa35a721b06ba1caf75278379e9f3f8.tar.gz |
Added a missing dependency.
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | PKGBUILD | 4 |
2 files changed, 7 insertions, 3 deletions
@@ -1,7 +1,7 @@ pkgbase = statifier pkgdesc = Create portable, self-containing Linux executables: Creates from dynamically linked executables and all it's libraries one file. Note: Does not play well with VDSO, which most modern kernels have activated. pkgver = 1.7.4 - pkgrel = 3 + pkgrel = 4 url = http://statifier.sourceforge.net/ arch = i386 arch = i486 @@ -9,10 +9,12 @@ pkgbase = statifier arch = i686 arch = x86_64 license = GPL2 + depends = gcc-libs depends = glibc - depends = lib32-glibc source = statifier-1.7.4.tar.gz::https://sourceforge.net/projects/statifier/files/statifier/1.7.4/statifier-1.7.4.tar.gz/download sha256sums = c8a758ee1f3604d1c6fa755e2422ac4e741008536c9065508050da69149d9f0e + depends_x86_64 = lib32-gcc-libs + depends_x86_64 = lib32-glibc pkgname = statifier @@ -5,17 +5,19 @@ pkgname="${_pkgname}" _pkgver=1.7.4 # epoch=0 pkgver="${_pkgver}" -pkgrel=3 +pkgrel=4 pkgdesc="Create portable, self-containing Linux executables: Creates from dynamically linked executables and all it's libraries one file. Note: Does not play well with VDSO, which most modern kernels have activated." arch=('i386' 'i486' 'i586' 'i686' 'x86_64') url="http://statifier.sourceforge.net/" license=('GPL2') depends=( + 'gcc-libs' 'glibc' ) depends_x86_64=( + 'lib32-gcc-libs' 'lib32-glibc' ) |