diff options
author | Daniel Nagy | 2015-06-08 20:36:40 +0200 |
---|---|---|
committer | Daniel Nagy | 2015-06-08 20:36:40 +0200 |
commit | d90299711eb2695b6469e8fc5fc5d58e16fab6cb (patch) | |
tree | aa25719752b3b109f8ab29b8542a8d7c575495f6 | |
download | aur-d90299711eb2695b6469e8fc5fc5d58e16fab6cb.tar.gz |
import to aur4
-rw-r--r-- | .SRCINFO | 17 | ||||
-rw-r--r-- | PKGBUILD | 34 |
2 files changed, 51 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..31e25187c72a --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,17 @@ +pkgbase = virtualsmartcard-git + pkgdesc = Virtual Smart Card emulates a smart card and makes it accessible through PC/SC + pkgver = 0 + pkgrel = 1 + url = http://sourceforge.net/projects/vsmartcard/ + arch = i686 + arch = x86_64 + license = GPLv3 + makedepends = help2man + depends = pcsclite + provides = virtualsmartcard + conflicts = virtualsmartcard + source = virtualsmartcard::git+http://git.code.sf.net/p/vsmartcard/git + sha1sums = SKIP + +pkgname = virtualsmartcard-git + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..39b545d38354 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,34 @@ +# Maintainer: Daniel Nagy <danielnagy at gmx de> + +pkgname=virtualsmartcard-git +_gitname=virtualsmartcard +pkgver=0 +pkgrel=1 +pkgdesc="Virtual Smart Card emulates a smart card and makes it accessible through PC/SC" +url="http://sourceforge.net/projects/vsmartcard/" +arch=('i686' 'x86_64') +license=( "GPLv3" ) +conflicts=( $_gitname ) +provides=( $_gitname ) +depends=( "pcsclite" ) +makedepends=( "help2man" ) +source=( "$_gitname::git+http://git.code.sf.net/p/vsmartcard/git" ) +sha1sums=('SKIP') + +pkgver() { + cd "$srcdir"/$_gitname + # Use the tag of the last commit + git describe --always | sed 's|-|.|g' +} + +build() { + cd "$srcdir"/$_gitname/virtualsmartcard + autoreconf --verbose --install + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir"/$_gitname/virtualsmartcard + make DESTDIR="$pkgdir" install +} |