25 lines
683 B
Bash
25 lines
683 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=lsdvd
|
|
pkgver=0.17
|
|
pkgrel=1
|
|
pkgdesc="Console application that displays the content of a DVD"
|
|
arch=('i686' 'x86_64')
|
|
url="https://sourceforge.net/projects/lsdvd/"
|
|
license=('GPL-2')
|
|
depends=('libdvdread')
|
|
source=(https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
sha512sums=('d217ebe063c9d4c1584abe99cba5c5d09e1d600d26c58f90d542235f9a629433aa24f24fd8399c639e21391e7a5e8bdf54a9c85083aed63eae1090f4c23677e0')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 COPYING -t "${pkgdir}/usr/share/licenses/$pkgname"
|
|
}
|