diff options
Diffstat (limited to 'repo')
-rw-r--r-- | repo/tip/cacert-utils.xibuild | 35 | ||||
-rw-r--r-- | repo/tip/fakechroot.xibuild | 13 | ||||
-rw-r--r-- | repo/tip/fakeroot.xibuild | 12 | ||||
-rw-r--r-- | repo/tip/icecream.xibuild | 18 |
4 files changed, 0 insertions, 78 deletions
diff --git a/repo/tip/cacert-utils.xibuild b/repo/tip/cacert-utils.xibuild deleted file mode 100644 index f88b9d2..0000000 --- a/repo/tip/cacert-utils.xibuild +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/bash - -DEPS=(bash coreutils findutils p11-kit) - -SOURCE=https://src.fedoraproject.org/rpms/ca-certificates -DESC="CA certificate utilities" - -build() { - asciidoc.py -v -d manpage -b docbook update-ca-trust.8.txt - xsltproc --nonet -o update-ca-trust.8 /etc/asciidoc/docbook-xsl/manpage.xsl update-ca-trust.8.xml -} - -package () { - rm update-ca-trust - wget https://raw.githubusercontent.com/archlinux/svntogit-packages/packages/ca-certificates/trunk/update-ca-trust - - install -Dt "$PKG_DEST/usr/bin" update-ca-trust - install -Dt "$PKG_DEST/usr/share/man/man8" -m644 update-ca-trust.8 - install -Dt "$PKG_DEST/usr/share/libalpm/hooks" -m644 *.hook - - # Trust source directories - # Upstream also adds "blocklist" but that's useless without support in p11-kit - install -d "$PKG_DEST"/{etc,usr/share}/ca-certificates/trust-source/{anchors,blocklist} - - # Directories used by update-ca-trust (aka "trust extract-compat") - install -d "$PKG_DEST"/etc/{ssl/certs/{edk2,java},ca-certificates/extracted} - - # Compatibility link for OpenSSL using /etc/ssl as CAdir - # Used in preference to the individual links in /etc/ssl/certs - ln -sr "$PKG_DEST/etc/ca-certificates/extracted/tls-ca-bundle.pem" "$PKG_DEST/etc/ssl/cert.pem" - - # Compatiblity link for legacy bundle - ln -sr "$PKG_DEST/etc/ca-certificates/extracted/tls-ca-bundle.pem" "$PKG_DEST/etc/ssl/certs/ca-certificates.crt" - -} diff --git a/repo/tip/fakechroot.xibuild b/repo/tip/fakechroot.xibuild deleted file mode 100644 index 2b9560b..0000000 --- a/repo/tip/fakechroot.xibuild +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash - -DEPS=(sh perl) - -SOURCE=https://github.com/dex4er/fakechroot -DESC="Gives a fake chroot environment" - -build () { - ./autogen.sh - ./configure --prefix=/usr - make - make DESTDIR=$PKG_DEST install -} diff --git a/repo/tip/fakeroot.xibuild b/repo/tip/fakeroot.xibuild deleted file mode 100644 index 650f18c..0000000 --- a/repo/tip/fakeroot.xibuild +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -DEPS=(glibc filesystem sed sh util-linux) - -SOURCE=https://github.com/mackyle/fakeroot -DESC="Tool for simulating a superuser environment" - -build () { - ./configure --prefix=/usr - make - make DESTDIR=$PKG_DEST install -} diff --git a/repo/tip/icecream.xibuild b/repo/tip/icecream.xibuild deleted file mode 100644 index 19beab4..0000000 --- a/repo/tip/icecream.xibuild +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -DEPS=(gcc python libcap-ng lzo libarchive) - -SOURCE=https://github.com/icecc/icecream/releases/download/1.3.1/icecc-1.3.1.tar.xz - -DESC="A build distribution service based on distcc" - - -build () { - ./configure --prefix=/usr - make -} - - -package () { - make DESTDIR=$PKG_DEST install -} |