summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKrzysztof (3ED) AS2015-07-02 10:03:49 +0200
committerKrzysztof (3ED) AS2015-07-02 10:03:49 +0200
commit44c2c6b94e98a5a1ab8b824b22428a9ad1311e60 (patch)
treea5bbbd990bcc12a2bb8d028cfaf92a5899a83e12
downloadaur-44c2c6b94e98a5a1ab8b824b22428a9ad1311e60.tar.gz
moving files, making space for additional scripts, aur4 and other stuff
-rw-r--r--.SRCINFO16
-rw-r--r--PKGBUILD30
-rw-r--r--info.install13
3 files changed, 59 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..916fb4073cd2
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,16 @@
+pkgbase = gtk2-theme-slickness
+ pkgdesc = A nice, dark (black & white) theme for gnome desktop.
+ pkgver = 2.2.2
+ pkgrel = 1
+ url = http://www.gnome-look.org/content/show.php/SlicknesS?content=71993
+ install = info.install
+ arch = i686
+ arch = x86_64
+ groups = gtk2-themes
+ license = GPL
+ depends = gtk2
+ source = http://www.deviantart.com/download/83117411/SlicknesS_by_Th3R0b.gz
+ md5sums = 565fa215c272d8e6340fc0a33049aa15
+
+pkgname = gtk2-theme-slickness
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..d768bd3c0b8a
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,30 @@
+# Contributor: 3ED <krzysztof1987@gmail.com>
+
+pkgname=gtk2-theme-slickness
+_urlid=83117411
+pkgver=2.2.2
+pkgrel=1
+pkgdesc="A nice, dark (black & white) theme for gnome desktop."
+arch=('i686' 'x86_64')
+url="http://www.gnome-look.org/content/show.php/SlicknesS?content=71993"
+license=('GPL')
+groups=('gtk2-themes')
+depends=('gtk2')
+install="info.install"
+source=("http://www.deviantart.com/download/$_urlid/SlicknesS_by_Th3R0b.gz")
+DLAGENTS=('http::/usr/bin/wget -c -t 3 --waitretry=3 -H -U Mozilla -O %o %u')
+md5sums=('565fa215c272d8e6340fc0a33049aa15')
+
+build() {
+ cd "$srcdir"
+ mkdir -p "$pkgdir/usr/share/themes/" || return 1
+
+ # Moving theme to pkg directory
+ mv "$srcdir/SlicknesS" "$pkgdir/usr/share/themes/" || return 1
+ # Setting up files and directory as '-rw-r--r--'
+ chmod -R 644 "$pkgdir/" || return 1
+ # Setting up directory as 'rwxr-xr-x'
+ chmod -R a+X "$pkgdir/" || return 1
+}
+# vim:set ts=2 sw=2 et:
+#$cat=x11
diff --git a/info.install b/info.install
new file mode 100644
index 000000000000..21d8d4988196
--- /dev/null
+++ b/info.install
@@ -0,0 +1,13 @@
+post_install() {
+ cat << EOF
+>> For Firefox: /usr/share/themes/SlicknesS/userChrome.css
+>> For Thunderbird: /usr/share/themes/SlicknesS/thunderbird/userChrome.css
+>> Changelog: /usr/share/themes/SlicknesS/changelog.txt
+EOF
+}
+
+post_upgrade() {
+ post_install $1
+}
+
+# vim:set ts=2 sw=2 et: