summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 21fff5be360502dfab3b3374e399478995f02808 (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
pkgname=gsteg
pkgver=0.1
pkgrel=1
pkgdesc="Steganography application in Gtk"
arch=('any')
url="https://www.github.com/elken/GSteg"
license=('BSD')
depends=('cmake' 'gtkmm3')
makedepends=('git')
install=
source=("gsteg::git+https://github.com/elken/GSteg")
md5sums=('SKIP') #generate with 'makepkg -g'

build() {
  cd "$srcdir/$pkgname"
  cmake .
  make
}

package() {
  cd "$srcdir/$pkgname"

  install -Dm755 gsteg "$pkgdir/usr/bin/gsteg"
}