blob: 3206af51cf13c92de070e8813095c52268a34c0e (
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>
# Contributor: aksr <aksr at t-com dot me>
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=yudit-beta
pkgver=3.1.0.beta15
pkgrel=1
pkgdesc="A free Unicode plain-text editor for Unix-like systems - beta version"
arch=('i686' 'x86_64')
url="http://www.yudit.org/"
license=('GPL2')
depends=('libx11' 'gcc-libs')
conflicts=('yudit')
provides=('yudit')
optdepends=('hunspell: spell checking')
source=("http://yudit.org/download/betas/${pkgname%-beta}-$pkgver.tar.gz")
sha256sums=('16e38320ea64d9b2911b3c0a556da167c909109309655f72ecf26e6297238069')
build() {
cd "${pkgname%-beta}-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "${pkgname%-beta}-$pkgver"
make DESTDIR="$pkgdir/" install
}
|