mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-12 03:12:22 +01:00
38 lines
835 B
Plaintext
38 lines
835 B
Plaintext
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=claws-mail-theme_elementary
|
|
pkgver=0
|
|
pkgrel=0
|
|
pkgdesc="claws-mail elementary theme"
|
|
url="http://www.claws-mail.org/themes.php"
|
|
arch="noarch"
|
|
license="GPLv2"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="$depends_dev"
|
|
install=""
|
|
subpackages=
|
|
source="http://www.claws-mail.org/download.php?file=themes/png/claws-mail-theme_elementary.tar.gz"
|
|
|
|
_builddir=
|
|
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() {
|
|
return 0
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"/usr/share/claws-mail/themes
|
|
mv "$srcdir"/elementary "$pkgdir"/usr/share/claws-mail/themes/
|
|
}
|
|
|
|
md5sums="9398c8cb789928c41f55f255beb89d94 claws-mail-theme_elementary.tar.gz"
|