mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
27 lines
610 B
Bash
27 lines
610 B
Bash
# Maintainer: UtG <utg[dot]chakra.linux[at]gmail[dot]com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=texi2html
|
|
pkgver=5.0
|
|
pkgrel=1
|
|
pkgdesc="Converts texinfo documents to HTML"
|
|
arch=('x86_64')
|
|
url="http://www.nongnu.org/texi2html/"
|
|
license=('GPL')
|
|
depends=('perl')
|
|
source=("http://download.savannah.gnu.org/releases/texi2html/$pkgname-$pkgver.tar.bz2")
|
|
md5sums=('f15ac876fcdc8be865b16535f480aa54')
|
|
|
|
build() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|