summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 54978a19353927c6600676764701b886d835f88f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Contributor: damir <damir at archlinux dot org>
# Contributor: Pierre Chapuis <catwell at archlinux dot us>
# Maintainer: aksr <aksr at t-com dot me>
pkgname=yudit
pkgver=3.1.0
pkgrel=1
pkgdesc="A free Unicode plain-text editor for Unix-like systems."
arch=('i686' 'x86_64')
url="http://www.yudit.org/"
license=('GPL')
depends=('libx11' 'gcc-libs')
conflicts=("${pkgname}-beta")
optdepends=('hunspell: spell checking')
source=("http://yudit.org/download/$pkgname-$pkgver.tar.gz")
md5sums=('7f1b972775286cb05b059459df2c7637')
sha1sums=('ade8a89117bc86c0e93c6144354dc6ab9968fd2b')
sha256sums=('a188234d6127357684f52c3d6c6a4b9d8f5abd0f7db672566bf444ef7a7ce557')
sha512sums=('07b89cdea29971fe49a7e61e2919261d6a39a6420c2587fad160a78885513460cb210b63dbfc1320f993d38e56e4104f77911530b9b7da210bfb7390e37ed352')

build() {
	cd "$pkgname-$pkgver"
	./configure --prefix=/usr
	make
}

package() {
	cd "$pkgname-$pkgver"
	make DESTDIR="$pkgdir/" install
}