20 lines
491 B
Plaintext
20 lines
491 B
Plaintext
# Description: h.265 video codec implementation
|
|
# URL: https://github.com/strukturag/libde265
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
# Depends on:
|
|
|
|
name=libde265
|
|
version=1.0.8
|
|
release=1
|
|
source=(https://github.com/strukturag/$name/releases/download/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr --disable-dec265 --disable-sherlock265
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
# strip .la files
|
|
rm -f $PKG/usr/lib/*.la
|
|
}
|