Initial commit

This commit is contained in:
Anton Leontiev 2013-08-23 16:58:29 +04:00
commit bad619ddce
3 changed files with 37 additions and 0 deletions

15
.SRCINFO Normal file
View file

@ -0,0 +1,15 @@
pkgbase = gnuplotme
pkgdesc = A simple intuitive front-end script for gnuplot
pkgver = 0.5
pkgrel = 1
url = http://www.jamjoom.net/tools/gnuplotme/gnuplotme.html
arch = i686
arch = x86_64
license = unknown
depends = perl
depends = gnuplot
source = http://www.jamjoom.net/tools/gnuplotme/gnuplotme
md5sums = 27686ba9e503400323672319151e9c2b
pkgname = gnuplotme

6
.gitignore vendored Normal file
View file

@ -0,0 +1,6 @@
*.tar.gz
*.tar.bz2
*.tar.xz
*.tar.lz
src/
pkg/

16
PKGBUILD Normal file
View file

@ -0,0 +1,16 @@
# Contributor: Anton Leontiev <bunder /at/ t-25.ru>
pkgname=gnuplotme
pkgver=0.5
pkgrel=1
pkgdesc="A simple intuitive front-end script for gnuplot"
arch=('i686' 'x86_64')
url="http://www.jamjoom.net/tools/gnuplotme/gnuplotme.html"
license=('unknown')
depends=('perl' 'gnuplot')
source=(http://www.jamjoom.net/tools/$pkgname/$pkgname)
md5sums=('27686ba9e503400323672319151e9c2b')
build() {
cd $srcdir
install -D -m755 $srcdir/$pkgname $pkgdir/usr/bin/$pkgname
}