mirror of
https://github.com/archlinux/aur.git
synced 2026-02-07 20:52:55 +01:00
Initial import
This commit is contained in:
commit
30900f858c
4 changed files with 121 additions and 0 deletions
19
.AURINFO
Normal file
19
.AURINFO
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
pkgbase = magic
|
||||
pkgdesc = A VLSI layout system
|
||||
pkgver = 8.0.206
|
||||
pkgrel = 1
|
||||
url = http://opencircuitdesign.com/magic/
|
||||
changelog = magic.changelog
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
license = custom:copyright
|
||||
makedepends = tcsh
|
||||
depends = tcl
|
||||
depends = tk
|
||||
depends = libx11
|
||||
optdepends = mesa: for better graphics
|
||||
optdepends = blt: to create a tree diagram of the cell hierarchy in a design
|
||||
source = http://opencircuitdesign.com/magic/archive/magic-8.0.206.tgz
|
||||
|
||||
pkgname = magic
|
||||
|
||||
20
.SRCINFO
Normal file
20
.SRCINFO
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
pkgbase = magic
|
||||
pkgdesc = A VLSI layout system
|
||||
pkgver = 8.0.206
|
||||
pkgrel = 1
|
||||
url = http://opencircuitdesign.com/magic/
|
||||
changelog = magic.changelog
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
license = custom:copyright
|
||||
makedepends = tcsh
|
||||
depends = tcl
|
||||
depends = tk
|
||||
depends = libx11
|
||||
optdepends = mesa: for better graphics
|
||||
optdepends = blt: to create a tree diagram of the cell hierarchy in a design
|
||||
source = http://opencircuitdesign.com/magic/archive/magic-8.0.206.tgz
|
||||
md5sums = c153fbde29fcf589a58dc23889ebf064
|
||||
|
||||
pkgname = magic
|
||||
|
||||
34
PKGBUILD
Normal file
34
PKGBUILD
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# Contributor: Jared Casper <jaredcasper@gmail.com>
|
||||
pkgname=magic
|
||||
pkgver=8.0.206
|
||||
pkgrel=1
|
||||
pkgdesc="A VLSI layout system"
|
||||
url="http://opencircuitdesign.com/magic/"
|
||||
arch=('i686' 'x86_64')
|
||||
license=('custom:copyright')
|
||||
depends=('tcl' 'tk' 'libx11')
|
||||
makedepends=('tcsh')
|
||||
optdepends=('mesa: for better graphics'
|
||||
'blt: to create a tree diagram of the cell hierarchy in a design')
|
||||
changelog=$pkgname.changelog
|
||||
source=(http://opencircuitdesign.com/magic/archive/$pkgname-$pkgver.tgz)
|
||||
md5sums=('c153fbde29fcf589a58dc23889ebf064')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname-$pkgver/"
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname-$pkgver/"
|
||||
make -j1 DESTDIR="$pkgdir" MANDIR=/usr/share/man install
|
||||
install -d "$pkgdir/usr/share/licenses/$pkgname"
|
||||
if [ -x /usr/bin/ps2ascii ]; then
|
||||
/usr/bin/ps2ascii "$pkgdir/usr/lib/magic/doc/copyright.ps" > "$pkgdir/usr/share/licenses/$pkgname/copyright"
|
||||
else
|
||||
install -m644 "$pkgdir/usr/lib/magic/doc/copyright.ps" "$pkgdir/usr/share/licenses/magic"
|
||||
fi
|
||||
mv "$pkgdir/usr/share/man/man1/extcheck.1" "$pkgdir/usr/share/man/man1/extcheck-magic.1"
|
||||
}
|
||||
|
||||
48
magic.changelog
Normal file
48
magic.changelog
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
2015-05-03 Kyle Keen <keenerd@gmail.com>
|
||||
* 8.0.206
|
||||
- Version bump
|
||||
|
||||
2013-10-21 Kyle Keen <keenerd@gmail.com>
|
||||
* 7.5.233
|
||||
- Version bump
|
||||
- license var
|
||||
- arch var
|
||||
|
||||
2013-01-29 Kyle Keen <keenerd@gmail.com>
|
||||
* 7.5.230
|
||||
- Version bump
|
||||
- Fix jdk7-openjdk conflict
|
||||
- Quoting
|
||||
|
||||
2010-09-21 Jared Casper <jaredcasper@gmail.com>
|
||||
* 7.5.207-1
|
||||
- Version bump
|
||||
- use changelog variable
|
||||
- split build() and package()
|
||||
- remove || return 1
|
||||
- mkdir/cp -> install
|
||||
- correct man directory
|
||||
|
||||
2010-04-07 Jared Casper <jaredcasper@gmail.com>
|
||||
* 7.5.190-1
|
||||
- Version bump
|
||||
- builddepends -> makedepends in PKGBUILD
|
||||
|
||||
2010-01-08 Jared Casper <jaredcasper@gmail.com>
|
||||
* 7.5.188-1
|
||||
- Version bump (finally)
|
||||
|
||||
2008-09-28 Jared Casper <jaredcasper@gmail.com>
|
||||
* 7.5.151-1
|
||||
- Version Bump
|
||||
- Removed sed from PKGBUILD that was now unnecessary and causing problems
|
||||
|
||||
2008-06-08 Jared Casper <jaredcasper@gmail.com>
|
||||
|
||||
* 7.5.143-1
|
||||
- Version bump
|
||||
|
||||
2008-05-15 Jared Casper <jaredcasper@gmail.com>
|
||||
|
||||
* 7.5.137-1
|
||||
- Initial package
|
||||
Loading…
Add table
Reference in a new issue