mirror of
https://github.com/archlinux/aur.git
synced 2026-03-05 07:32:21 +01:00
Initial commit
This commit is contained in:
commit
bad619ddce
3 changed files with 37 additions and 0 deletions
15
.SRCINFO
Normal file
15
.SRCINFO
Normal 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
6
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
*.tar.gz
|
||||
*.tar.bz2
|
||||
*.tar.xz
|
||||
*.tar.lz
|
||||
src/
|
||||
pkg/
|
||||
16
PKGBUILD
Normal file
16
PKGBUILD
Normal 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
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue