diff options
author | Alan Lacerda <alacerda@alpinelinux.org> | 2015-03-24 14:39:37 +0000 |
---|---|---|
committer | Alan Lacerda <alacerda@alpinelinux.org> | 2015-03-24 16:19:36 +0000 |
commit | fa2a9e642a482b7e047125214a8bf1612a3a82be (patch) | |
tree | b6e208ee03804933bb3666d29da06e3fe283ef2e /main/mate-icon-theme/APKBUILD | |
parent | 82fcf69f2720035980ed06d8b9a39198ea90940f (diff) | |
download | aports-fa2a9e642a482b7e047125214a8bf1612a3a82be.tar.bz2 aports-fa2a9e642a482b7e047125214a8bf1612a3a82be.tar.xz |
main/mate-icon-theme: move from testing
Diffstat (limited to 'main/mate-icon-theme/APKBUILD')
-rw-r--r-- | main/mate-icon-theme/APKBUILD | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/main/mate-icon-theme/APKBUILD b/main/mate-icon-theme/APKBUILD new file mode 100644 index 0000000000..f828522eeb --- /dev/null +++ b/main/mate-icon-theme/APKBUILD @@ -0,0 +1,45 @@ +# Contributor: Alan Lacerda <alacerda@alpinelinux.org> +# Maintainer: Alan Lacerda <alacerda@alpinelinux.org> +pkgname=mate-icon-theme +pkgver=1.9.90 +pkgrel=0 +pkgdesc="MATE desktop icons" +url="https://github.com/mate-desktop/mate-icon-theme" +arch="noarch" +license="GPL2" +depends="mate-common" +depends_dev="" +makedepends="icon-naming-utils intltool" +install="" +subpackages="" +source="http://pub.mate-desktop.org/releases/1.9/$pkgname-$pkgver.tar.xz" + +_builddir="$srcdir/$pkgname-$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" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="${pkgdir}" install || return 1 +} + +md5sums="0d13c3151f0f10ab8bf6b0790eb05f91 mate-icon-theme-1.9.90.tar.xz" +sha256sums="cd17920766ae0e2a450d529a4db4f73c0e035d5914e5e654dbedf11243372d4d mate-icon-theme-1.9.90.tar.xz" +sha512sums="ce832f5524680e2ed008bcf47240542eb4f7834155c77f78f0990352f667b08b30d7d570e028b9c99e29bded7fdf7b3f9fdfea83ce005d324635d49947abf83e mate-icon-theme-1.9.90.tar.xz" |