summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 813305460093a78a694080fb9a4b84a2e876b0dc (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
# Maintainer: Storm Dragon <stormdragon2976@gmail.com>
_pkgname="GnuSocialShell"
pkgname="gnusocialshell-git"
pkgver=0.2
pkgrel=2
pkgdesc="A simple useful text-based GnuSocial client to UNIX-like Operating Systems"
arch=('armv7h' 'i686' 'x86_64')
url="https://github.com/dalmemail/GnuSocialShell"
license=("GPL")
depends=("curl")
makedepends=("git")
provides=("gss")
conflicts=("gss")
source=("git+${url}.git")
md5sums=("SKIP")

# Needs a pkgver function but none of the ones I try work, there are no tags and the tagless code only generates a . which causes an error.

build()
{
  cd "$_pkgname"
  touch config.rpath
  autoreconf -iv
  ./configure --prefix=/usr/local
  make
}

package()
{
  cd "$_pkgname"
  make DESTDIR="$pkgdir" install
}

# vim:set ts=2 sw=2 et: