From 47a26907e204b6ed6924937599df85cbf10027d8 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sat, 21 Jul 2018 13:10:41 -0700 Subject: [PATCH] Remove Arch Linux PKGBUILD There's now an official Arch Linux package for wimlib. So the PKGBUILD file in-tree is redundant. --- Makefile.am | 2 +- archlinux/PKGBUILD | 38 -------------------------------------- tools/update-version | 2 -- 3 files changed, 1 insertion(+), 41 deletions(-) delete mode 100644 archlinux/PKGBUILD diff --git a/Makefile.am b/Makefile.am index b72bd1df..92c09feb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,7 +20,7 @@ AM_LDFLAGS = $(PLATFORM_LDFLAGS) EXTRA_DIST = README README.WINDOWS \ COPYING COPYING.GPLv3 COPYING.LGPLv3 COPYING.CC0 \ examples \ - archlinux debian rpm + debian rpm ############################################################################## # Library # diff --git a/archlinux/PKGBUILD b/archlinux/PKGBUILD deleted file mode 100644 index c4f55e64..00000000 --- a/archlinux/PKGBUILD +++ /dev/null @@ -1,38 +0,0 @@ -# Maintainer: Eric Biggers - -pkgname=wimlib -pkgver=1.12.0 -pkgrel=1 -pkgdesc="A library and program to extract, create, and modify WIM files" -arch=("i686" "x86_64") -url="https://wimlib.net" -license=("custom") -depends=("openssl" "fuse" "libxml2" "ntfs-3g") -checkdepends=("attr") -optdepends=("cdrkit: for making ISO image of Windows PE" - "mtools: for making disk image of Windows PE" - "syslinux: for making disk image of Windows PE" - "cabextract: for extracting Windows PE from the WAIK") -source=("https://wimlib.net/downloads/$pkgname-$pkgver.tar.gz") - -build() { - cd "$pkgname-$pkgver" - ./configure --with-libcrypto --with-fuse --with-ntfs-3g --prefix=/usr - make -} - -check() { - cd "$pkgname-$pkgver" - make check -} - -package() { - cd "$pkgname-$pkgver" - make DESTDIR="$pkgdir" install - for file in NEWS README; do - install -Dm644 $file "$pkgdir/usr/share/doc/$pkgname/$file" - done - for file in COPYING*; do - install -Dm644 $file "$pkgdir/usr/share/licenses/$pkgname/$file" - done -} diff --git a/tools/update-version b/tools/update-version index 92fcf7b3..99f7b74d 100755 --- a/tools/update-version +++ b/tools/update-version @@ -26,8 +26,6 @@ sed -i -e 's/\(#define WIMLIB_MAJOR_VERSION[[:space:]]\+\)[[:digit:]]\+/\1'$newm sed -i -e "1s/$oldmonth $oldyear/$newmonth $newyear/;1s/wimlib $oldver/wimlib $newver/" \ doc/man[1-9]/*.[1-9] -sed -i "s/pkgver=$oldver/pkgver=$newver/" archlinux/PKGBUILD - sed -i "1i\\ wimlib ($newver-1) unstable; urgency=low\\ \\ -- 2.43.0