pkgbuilds
pkgbuilds copied to clipboard
[mlt-git] configure file was removed from the upstream branch
Since mlt project have no more configure file, the packages needs to be built using cmake:
i am no expert at this, so i am using this approach for now:
build() {
cd "${_srcname}"
cmake ../mlt \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=/usr \
-DMOD_OPENCV=ON \
-DMOD_MOVIT=ON
make
}
package() {
cd "${_srcname}"
make DESTDIR="${pkgdir}" install
}