blob: a98e921b4285cf07a8c3c5531167c31a67f4451b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Maintainer: Jefferson Gonzalez <jgmdev@gmail.com>
pkgname=xfce4-equake-plugin
pkgver=1.3.8.1
pkgrel=1
pkgdesc="Equake monitors and displays earthquakes in your Xfce panel"
arch=('i686' 'x86_64')
license=('GPL2')
url="https://sourceforge.net/projects/equake/"
groups=('xfce4-goodies')
depends=('xfce4-panel')
makedepends=('intltool')
install="${pkgname}.install"
source=(https://sourceforge.net/projects/equake/files/${pkgname}-${pkgver}.tar.gz)
sha256sums=('32378cfcc741c024fa2dccc50f0b303039968761e81e211bac7e225dc4868295')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib \
--localstatedir=/var \
--disable-static \
--disable-debug
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}
|