From 48ca75555522716f0f686dcae3dd6cf3d8ad714d Mon Sep 17 00:00:00 2001 From: davidovski Date: Tue, 31 May 2022 11:05:19 +0100 Subject: removed idea of repos --- repo/system/bzip2/bzip2.xibuild | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 repo/system/bzip2/bzip2.xibuild (limited to 'repo/system/bzip2') diff --git a/repo/system/bzip2/bzip2.xibuild b/repo/system/bzip2/bzip2.xibuild deleted file mode 100644 index d0d42f6..0000000 --- a/repo/system/bzip2/bzip2.xibuild +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/sh - -MAKEDEPS="make " -DEPS="musl sh" - -PKG_VER=1.0.8 -SOURCE=git://sourceware.org/git/bzip2.git -BRANCH=bzip2-$PKG_VER -DESC="a selection of programs for compressing and decompressing bzip2 files" - - -prepare () { - - # ensure symbolic links are relative - sed -i 's@\(ln -s -f \)$(PREFIX)/bin/@\1@' Makefile -} - -build () { - make -f Makefile-libbz2_so - make clean - make -} - -package () { - make PREFIX=$PKG_DEST/usr install - - cp -a libbz2.so* $PKG_DEST/usr/lib - cp -a libbz2.so.$PKG_VER $PKG_DEST/usr/lib/libbz2.so - - cp bzip2-shared $PKG_DEST/usr/bin/bzip2 - for i in $PKG_DEST/usr/bin/bzcat $PKG_DEST/usr/bin/bunzip2; do - ln -sf bzip2 $i - done - - # remove a useless static library - rm -f $PKG_DEST/usr/lib/libbz2.a -} - -- cgit v1.2.1