diff options
author | Gonzalo Exequiel Pedone | 2021-12-12 08:38:14 -0300 |
---|---|---|
committer | Gonzalo Exequiel Pedone | 2021-12-12 08:38:14 -0300 |
commit | 260c05dee0c42dfe676cc43b0119e24fbe07e4ce (patch) | |
tree | bf48ac644963aab5edacae1e98b0726b5beff2b9 /PKGBUILD | |
parent | aac6d3a3c59f712d874e6e4456a234cd3448ed94 (diff) | |
download | aur-260c05dee0c42dfe676cc43b0119e24fbe07e4ce.tar.gz |
Fixed missing headers.
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -2,7 +2,7 @@ pkgname=webcamoid pkgver=8.8.0 -pkgrel=1 +pkgrel=2 pkgdesc="Webcamoid is a full featured webcam capture application." url='https://webcamoid.github.io/' license=('GPL') @@ -39,8 +39,15 @@ makedepends=('v4l-utils' provides=('webcamoid') conflicts=('webcamoid-git') install="${pkgname}.install" -source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz") -sha256sums=('77ed77cbaf57180247485646b81af30edcc89ee545bc241c23d8bd648464bf15') +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz" + "0001-Fix-missing-headers.patch") +md5sums=('d2b4455aa01924a07fc03165185e317c' + 'f7a79dac3b251f0e0454e512222e3306') + +prepare() { + cd "$srcdir/${pkgname}-${pkgver}" + patch -Np1 -i "../0001-Fix-missing-headers.patch" +} build() { cd "$srcdir/${pkgname}-${pkgver}" |