summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Anhuth2018-04-27 11:49:01 +0200
committerOliver Anhuth2018-04-27 11:49:01 +0200
commit72bfe5184d8da8bff3c23646aadd0ff49c4f3db4 (patch)
tree10feb4a56e900809bcc360f19876d6ca2c256f6d
parent0a77bc84cb23d1376526989bb92e8745c859f2f8 (diff)
downloadaur-72bfe5184d8da8bff3c23646aadd0ff49c4f3db4.tar.gz
Add classic Numix theme also.
-rw-r--r--.SRCINFO4
-rw-r--r--.gitignore2
-rw-r--r--PKGBUILD13
3 files changed, 15 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index b901565e4feb..00704d8c578d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,15 @@
pkgbase = xfce-theme-numix-hdpi
pkgdesc = An Xfce Numix theme with taller window title bars suitable for HDPI resolutions
- pkgver = 1.0
+ pkgver = 1.1
pkgrel = 1
url = https://github.com/elmodos/numix-taller
arch = any
license = GPL
provides = xfce-theme-numix-hdpi
source = https://github.com/elmodos/numix-taller/archive/master.tar.gz
+ source = https://github.com/elmodos/numix-taller/archive/master-numix-legacy.tar.gz
md5sums = 5da1b72f63d43dc02805ce072ceabe19
+ md5sums = 60bdf3853af50ef66b1bc9741cede209
pkgname = xfce-theme-numix-hdpi
diff --git a/.gitignore b/.gitignore
index 9720de122cde..0cdef0dcd67e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,5 @@
pkg
src
+master-numix-legacy.tar.gz
+master.tar.gz
xfce-theme-numix-hdpi-*.pkg.tar.xz
diff --git a/PKGBUILD b/PKGBUILD
index fec4fe6054cb..1f704be75245 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,5 +1,5 @@
pkgname=xfce-theme-numix-hdpi
-pkgver=1.0
+pkgver=1.1
pkgrel=1
pkgdesc="An Xfce Numix theme with taller window title bars suitable for HDPI resolutions"
arch=('any')
@@ -8,10 +8,17 @@ license=('GPL')
depends=()
makedepends=()
provides=('xfce-theme-numix-hdpi')
-source=("https://github.com/elmodos/numix-taller/archive/master.tar.gz")
-md5sums=('5da1b72f63d43dc02805ce072ceabe19')
+source=(
+ "https://github.com/elmodos/numix-taller/archive/master.tar.gz"
+ "https://github.com/elmodos/numix-taller/archive/master-numix-legacy.tar.gz"
+)
+md5sums=(
+ "5da1b72f63d43dc02805ce072ceabe19"
+ "60bdf3853af50ef66b1bc9741cede209"
+)
package() {
mkdir --parents ../pkg/xfce-theme-numix-hdpi/usr/share/themes
cp --recursive numix-taller-master/Numix-Taller ../pkg/xfce-theme-numix-hdpi/usr/share/themes/Numix-hdpi
+ cp --recursive numix-taller-master-numix-legacy/Numix-Taller ../pkg/xfce-theme-numix-hdpi/usr/share/themes/Numix-Classic-hdpi
}