Date: Sunday, March 13, 2022 @ 18:14:09 Author: arojas Revision: 439577
Enable github-style checkboxes Modified: discount/trunk/PKGBUILD ----------+ PKGBUILD | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-03-13 12:49:40 UTC (rev 439576) +++ PKGBUILD 2022-03-13 18:14:09 UTC (rev 439577) @@ -5,7 +5,7 @@ pkgname=discount pkgver=2.2.7 -pkgrel=1 +pkgrel=2 pkgdesc='A Markdown implementation written in C' arch=(x86_64) url="https://www.pell.portland.or.us/~orc/Code/discount/" @@ -15,9 +15,6 @@ sha256sums=('72c1325ddfc40871d6810f1e272cf2d45b361f26357eb38f170fd04d737bb9f2' '7eced2472fdbe25badc13c35dfd6920b68b5a208889ee031ef0c060c093cc89b') depends=(glibc) -conflicts=(markdown) -provides=(markdown) -replaces=(markdown) prepare() { patch -d $pkgname-$pkgver -p1 -i ../discount-ldflags.patch # Honor system ldflags @@ -25,7 +22,12 @@ build() { cd $pkgname-$pkgver - ./configure.sh --prefix=/usr --enable-all-features --with-fenced-code --shared + ./configure.sh \ + --prefix=/usr \ + --enable-all-features \ + --with-fenced-code \ + --github-checkbox \ + --shared make -j1 }
