forked from ports/contrib
22 lines
724 B
Plaintext
22 lines
724 B
Plaintext
# Description: Some themes for claws-mail email client
|
|
# URL: http://www.claws-mail.org/themes.php?section=downloads
|
|
# Maintainer: Mikhail Kolesnik, mike at openbunker dot org
|
|
# Depends on: claws-mail
|
|
|
|
name=claws-mail-themes
|
|
version=20080822
|
|
release=2
|
|
source=(http://www.claws-mail.org/themes/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
mkdir -p $PKG/usr/share/claws-mail/themes
|
|
cp -r $name-$version/* $PKG/usr/share/claws-mail/themes
|
|
find $PKG -name INSTALL | xargs rm -f
|
|
find $PKG -name COPYING | xargs rm -f
|
|
find $PKG -name LICENSE | xargs rm -f
|
|
find $PKG -name README* | xargs rm -f
|
|
find $PKG -name ChangeLog* | xargs rm -f
|
|
find $PKG -type f -print0 | xargs -0 chmod 644
|
|
find $PKG -type d -print0 | xargs -0 chmod 755
|
|
}
|