aboutsummaryrefslogtreecommitdiffstats
path: root/lib32-libjson/PKGBUILD
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2024-10-08 20:28:25 +0200
committerMattias Andrée <m@maandree.se>2024-10-08 20:28:25 +0200
commit472e769077880733441136516ce8f71be35939f1 (patch)
tree424589dfda6ca797b08e6c58b57c4476a8c1dbc2 /lib32-libjson/PKGBUILD
parentUpdate e-mail (diff)
downloadaur-packages-472e769077880733441136516ce8f71be35939f1.tar.gz
aur-packages-472e769077880733441136516ce8f71be35939f1.tar.bz2
aur-packages-472e769077880733441136516ce8f71be35939f1.tar.xz
Remove some old packages
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'lib32-libjson/PKGBUILD')
-rw-r--r--lib32-libjson/PKGBUILD32
1 files changed, 0 insertions, 32 deletions
diff --git a/lib32-libjson/PKGBUILD b/lib32-libjson/PKGBUILD
deleted file mode 100644
index e2becb5..0000000
--- a/lib32-libjson/PKGBUILD
+++ /dev/null
@@ -1,32 +0,0 @@
-# Maintainer: Mattias Andrée <m@`base64 -d`(bWFhbmRyZWU).se>
-
-_pkgbasename=libjson
-pkgname=lib32-$_pkgbasename
-pkgver='0.8'
-pkgrel='1'
-pkgdesc="Small C library and small codebase that packs an efficient parser and a configurable printer (32-bit version)"
-arch=('x86_64')
-url="https://projects.snarc.org/libjson/"
-license=('LGPL')
-depends=(lib32-glibc $_pkgbasename)
-makedepends=(gcc-multilib)
-options=(!libtool !makeflags)
-source=("https://projects.snarc.org/libjson/download/libjson-${pkgver}.tar.gz")
-sha256sums=('4f0e717a8edc6ede5c4d900d810165ca91f033b2863989daaeaf1b3fe5ea0ad6')
-
-build() {
- cd "${srcdir}/${_pkgbasename}-${pkgver}"
-
- export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
- sed -i s:/lib:/lib32:g Makefile
- make CC="gcc -m32" CFLAGS:='-Wall -Os -fPIC'
-}
-
-package() {
- cd "${srcdir}/${_pkgbasename}-${pkgver}"
-
- make CC="gcc -m32" CFLAGS:='-Wall -Os -fPIC' DESTDIR="${pkgdir}" install
- rm -r "${pkgdir}/usr/bin"
- rm -r "${pkgdir}/usr/include"
-}
-