diff --git a/README.md b/README.md index ff22f3c..443464f 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,6 @@ You can install init-templates either manually or with a script. Makepp most likely will not be installed on your system, neither will you find it in your distributions repositories. You can get it from: - [The official website](https://makepp.sourceforge.net) - [CPAN](https://metacpan.org/release/makepp) -- My personal [PKGBUILD]() (Arch Linux and derivatives only) ## Manual Installation 1. Clone or download this repo `makepp install` diff --git a/makepp-PKGBUILD/PKGBUILD b/makepp-PKGBUILD/PKGBUILD deleted file mode 100644 index f4de149..0000000 --- a/makepp-PKGBUILD/PKGBUILD +++ /dev/null @@ -1,28 +0,0 @@ -# Maintainer: Jan Felix Langenbach -pkgname=makepp -pkgver=2.0.99.2 -pkgrel=1 -pkgdesc="Compatible but improved replacement for make" -arch=('any') -url="http://makepp.sourceforge.net/" -license=('GPL' 'PerlArtistic') -depends=('perl>=5.8') -source=("$pkgname-$pkgver.txz::https://sourceforge.net/projects/$pkgname/files/2.1/$pkgname-$pkgver.txz/download") -sha1sums=('c7696cd00a28114c8c667ef5f735e010a00023ad') -md5sums=('62aa55f8a20a4256f7413746724be58a') - -build() { - cd "$pkgname-$pkgver" - ./configure --prefix=/usr - make -} - -check() { - cd "$pkgname-$pkgver" - make -k check -} - -package() { - cd "$pkgname-$pkgver" - make DESTDIR="$pkgdir/" install -}