Initial commit

This commit is contained in:
willemw12 2015-09-28 10:56:30 +02:00
commit df45575b62
3 changed files with 50 additions and 0 deletions

19
.SRCINFO Normal file
View file

@ -0,0 +1,19 @@
# Generated by mksrcinfo v7
# Mon Sep 28 08:56:16 UTC 2015
pkgbase = typhoon
pkgdesc = A weather application based on Stormcloud
pkgver = 0.8.94
pkgrel = 2
url = https://www.launchpad.net/typhoon
install = typhoon.install
arch = any
license = GPL3
makedepends = python2-distutils-extra
depends = dconf
depends = python2-gobject
depends = webkitgtk3
source = https://launchpad.net/typhoon/trunk/0.8.94/+download/typhoon_0.8.94.tar.gz
md5sums = 659f85cb08b4c0bdffe943d507c83362
pkgname = typhoon

20
PKGBUILD Normal file
View file

@ -0,0 +1,20 @@
# Maintainer: willemw <willemw12@gmail.com>
pkgname=typhoon
pkgver=0.8.94
pkgrel=2
pkgdesc="A weather application based on Stormcloud"
arch=('any')
url="https://www.launchpad.net/typhoon"
license=('GPL3')
makedepends=('python2-distutils-extra')
depends=('dconf' 'python2-gobject' 'webkitgtk3')
install=$pkgname.install
source=(https://launchpad.net/$pkgname/trunk/$pkgver/+download/${pkgname}_$pkgver.tar.gz)
md5sums=('659f85cb08b4c0bdffe943d507c83362')
package() {
cd $pkgname
python2 setup.py install --root="$pkgdir/" --optimize=1
}

11
typhoon.install Normal file
View file

@ -0,0 +1,11 @@
post_install() {
glib-compile-schemas --allow-any-name usr/share/glib-2.0/schemas
}
post_upgrade() {
post_install "$1"
}
post_remove() {
post_install "$1"
}