diff options
-rw-r--r-- | community/go-md2man/APKBUILD | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/community/go-md2man/APKBUILD b/community/go-md2man/APKBUILD index eb1931f3a1..c3c1ee12ef 100644 --- a/community/go-md2man/APKBUILD +++ b/community/go-md2man/APKBUILD @@ -23,18 +23,16 @@ build() { } check() { - cd "$builddir" ./go-md2man -in go-md2man.1.md -out go-md2man.1 } package() { - cd "$builddir" install -Dsm755 go-md2man "$pkgdir"/usr/bin/go-md2man install -Dm644 go-md2man.1 "$pkgdir"/usr/share/man/man1/go-md2man.1 } cleanup_srcdir() { - go clean -modcache + [ -d src ] && rm -R +r src default_cleanup_srcdir } |