summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authornemesys2020-08-14 06:11:18 -0400
committernemesys2020-08-14 06:11:18 -0400
commita8300e58cf96c96b54f262a7a6ca86ce54f42b1b (patch)
tree7a764c7ffd294f4228dfd348b1fd23d5c5854edb
downloadaur-a8300e58cf96c96b54f262a7a6ca86ce54f42b1b.tar.gz
Initial commit for the fbsplash-theme-gen
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD23
2 files changed, 38 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..3b2841d8884d
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+pkgbase = fbsplash-theme-gen
+ pkgdesc = fbsplash-theme-gen allows you to create fbsplash compatible themes automatically from any image file(s).
+ pkgver = 1.0
+ pkgrel = 1
+ url = http://sourceshark.com/sourcecode/tarballs/fbsplash-theme-gen-1.0.tar.gz
+ arch = x86_64
+ depends = imagemagick
+ optdepends = fbsplash: To set the fbsplash theme
+ noextract = fbsplash-theme-gen-1.0.zip
+ options = !strip
+ source = fbsplash-theme-gen-1.0.tar.gz::http://sourceshark.com/sourcecode/tarballs/fbsplash-theme-gen-1.0.tar.gz
+ sha512sums = 5691ebbfb24d2940b1f82cc11e56af3af295287a2b367e3057396d60673944ae22de9459ad56608ab72d323ba9d2e920a2d2cda0b692760a2d1133a581050368
+
+pkgname = fbsplash-theme-gen
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..dc85fe1dfb64
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,23 @@
+# Mantainer: nemesys <nemstart zoho com>
+
+pkgname=fbsplash-theme-gen
+pkgver=1.0
+pkgrel=1
+pkgdesc="fbsplash-theme-gen allows you to create fbsplash compatible themes automatically from any image file(s)."
+arch=("x86_64")
+url="http://sourceshark.com/sourcecode/tarballs/${pkgname}-${pkgver}.tar.gz"
+depends=("imagemagick")
+optdepends=("fbsplash: To set the fbsplash theme")
+source=("$pkgname-$pkgver.tar.gz::http://sourceshark.com/sourcecode/tarballs/${pkgname}-${pkgver}.tar.gz")
+options=(!strip)
+sha512sums=('5691ebbfb24d2940b1f82cc11e56af3af295287a2b367e3057396d60673944ae22de9459ad56608ab72d323ba9d2e920a2d2cda0b692760a2d1133a581050368')
+ noextract=("$pkgname-$pkgver.zip")
+
+ prepare() {
+ tar -zxvf "${pkgname}-${pkgver}.tar.gz"
+ }
+
+
+package() {
+ mv usr ${pkgdir}/
+}