aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2020-02-26 22:20:27 -0300
committerLeo <thinkabit.ukim@gmail.com>2020-02-26 23:33:39 -0300
commitf825a62e9c1f1badf1e09fbf589ecf65cf7f64b1 (patch)
treebe1af35e929b7c170e2ae896d7b2283a2c9742af /main
parent779b6e69c59807ef17381003eea3f6420a9d2071 (diff)
downloadaports-f825a62e9c1f1badf1e09fbf589ecf65cf7f64b1.tar.bz2
aports-f825a62e9c1f1badf1e09fbf589ecf65cf7f64b1.tar.xz
unmaintained/gapk: move from main
Diffstat (limited to 'main')
-rw-r--r--main/gapk/APKBUILD37
1 files changed, 0 insertions, 37 deletions
diff --git a/main/gapk/APKBUILD b/main/gapk/APKBUILD
deleted file mode 100644
index 85c8e331aa..0000000000
--- a/main/gapk/APKBUILD
+++ /dev/null
@@ -1,37 +0,0 @@
-# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
-pkgname=gapk
-pkgver=0.1
-pkgrel=1
-pkgdesc="simple GTK frontend for apk-tools"
-url="https://github.com/ncopa/gapk"
-arch="all"
-license="GPL-2.0"
-depends="apk-tools"
-depends_dev=""
-makedepends="$depends_dev gtk+3.0-dev"
-install=""
-subpackages=""
-source="gapk-$pkgver.tar.gz::https://github.com/ncopa/gapk/archive/v$pkgver.tar.gz"
-
-_builddir="$srcdir"/gapk-$pkgver
-prepare() {
- local i
- cd "$_builddir"
- for i in $source; do
- case $i in
- *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
- esac
- done
-}
-
-build() {
- cd "$_builddir"
- make || return 1
-}
-
-package() {
- cd "$_builddir"
- make DESTDIR="$pkgdir" install || return 1
-}
-
-sha512sums="003c837288796a8e23d2296f352b855df9feadbe3b34c9f5704925882e7e25b242e3adf6088d8072459ac871ca5bfdd6fb8016e0357b1234d374b946fa808edf gapk-0.1.tar.gz"