blob: 1298cebd6f516393c339f15813e51dc07f5544ef (
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
34
35
|
# Maintainer: fenuks
_pkgname=gnoMint
pkgname=gnomint
pkgver=1.3.0
pkgrel=3
pkgdesc="Certification Authority management made easy."
arch=("i686" "x86_64")
url="http://gnomint.sf.net"
license=("GPL3")
depends=("gconf" "gtk2" "sqlite")
optdepends=()
makedepends=("autoconf" "intltool")
conflicts=("${pkgname}")
options=("!buildflags")
# install=$pkgname.install
source=("gnomint-${pkgver}.tar.gz::https://github.com/davefx/gnoMint/archive/1.3.0.tar.gz")
md5sums=('a02c57c0bcc2d714b8034d264bc46afc')
prepare() {
cd "${srcdir}/${_pkgname}-${pkgver}"
./autogen.sh --prefix=/usr
}
build() {
cd "${srcdir}/${_pkgname}-${pkgver}"
make
}
package() {
cd "${srcdir}/${_pkgname}-${pkgver}"
make install DESTDIR="$pkgdir"
cd "${pkgdir}"
mv usr/etc .
}
|