Pkgfile 494 B

1234567891011121314151617181920
  1. # Description: camorama is software that lets you view, alter and save images from a webcam.
  2. # URL: https://github.com/alessio/camorama
  3. # Maintainer: Daniel Azevedo, daniazevedo77 at posteo dot net
  4. # Depends on: v4l-utils glib gnome-common
  5. name=camorama
  6. version=0.21.2
  7. release=2
  8. source=(https://github.com/alessio/$name/archive/refs/tags/$version.tar.gz)
  9. build() {
  10. cd $name-$version
  11. ./autogen.sh
  12. ./configure --prefix=/usr
  13. make
  14. make DESTDIR=$PKG install
  15. rm -rf $PKG/usr/share/locale/
  16. }