Add 'gscanbus/' from commit 'cec064081a36b535b7bddd98fb370ad5c6e566e5'

git-subtree-dir: gscanbus
git-subtree-mainline: b2eda12192
git-subtree-split: cec064081a
This commit is contained in:
Cedric Girard 2019-02-14 15:35:49 +01:00
commit d414af8f81
2 changed files with 41 additions and 0 deletions

15
gscanbus/.SRCINFO Normal file
View File

@ -0,0 +1,15 @@
pkgbase = gscanbus
pkgdesc = gscanbus is a little bus scanning, testing and topology visualizing tool for the Linux IEEE1394 subsystem
pkgver = 0.8
pkgrel = 1
url = http://gscanbus.berlios.de/
arch = i686
arch = x86_64
license = GPL
depends = libraw1394>=1.2.0
depends = gtk2
source = http://downloads.sourceforge.net/project/gscanbus.berlios/gscanbus-0.8.tar.gz
md5sums = 086bed2bcfb43f2ae892a12de699630e
pkgname = gscanbus

26
gscanbus/PKGBUILD Normal file
View File

@ -0,0 +1,26 @@
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
# Contributor : Jason Chu <jason@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=gscanbus
pkgver=0.8
pkgrel=1
pkgdesc="gscanbus is a little bus scanning, testing and topology visualizing tool for the Linux IEEE1394 subsystem"
arch=('i686' 'x86_64')
depends=('libraw1394>=1.2.0' 'gtk2')
source=(http://downloads.sourceforge.net/project/gscanbus.berlios/$pkgname-$pkgver.tar.gz)
md5sums=('086bed2bcfb43f2ae892a12de699630e')
url="http://gscanbus.berlios.de/"
license=('GPL')
build() {
cd ${srcdir}/$pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc/gscanbus
make
}
package() {
cd ${srcdir}/$pkgname-$pkgver
make DESTDIR=${pkgdir} install
}