apkdoc @ 41f860a791c9869ce68d55aeb97cc07d7f47c09c

ref: Move to pflag

Don't like default single `-` param.
diff --git a/go.mod b/go.mod
index 6ec9ad4c3ea0771cc12e0f0a3feadff13616085b..66cf37dda6e09cd47f00ed6c86588d6e87ceb796 100644
--- a/go.mod
+++ b/go.mod
@@ -3,6 +3,8 @@
 go 1.20
 
 require (
-	github.com/valyala/bytebufferpool v1.0.0 // indirect
-	github.com/valyala/quicktemplate v1.7.0 // indirect
+	github.com/spf13/pflag v1.0.5
+	github.com/valyala/quicktemplate v1.7.0
 )
+
+require github.com/valyala/bytebufferpool v1.0.0 // indirect
diff --git a/go.sum b/go.sum
index 9b4d04803e4106351206e0a5975f5da6faffd9f0..ec4e9cf9cfdc351ce19f5c58eb68ec5ca39b1ee0 100644
--- a/go.sum
+++ b/go.sum
@@ -3,6 +3,8 @@ github.com/andybalholm/brotli v1.0.3/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig=
 github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
 github.com/klauspost/compress v1.13.4/go.mod h1:8dP1Hq4DHOhN9w426knH3Rhby4rFm6D8eO+e+Dq5Gzg=
 github.com/klauspost/compress v1.13.5/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk=
+github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
+github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
 github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw=
 github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc=
 github.com/valyala/fasthttp v1.30.0/go.mod h1:2rsYD01CKFrjjsvFxx75KlEUNpWNBY9JWD3K/7o2Cus=
diff --git a/main.go b/main.go
index 3488c325f99c78bb095d7c5967f73eb84ab365a4..abeb557fe951b047a8b35b7b6c40533af7724667 100644
--- a/main.go
+++ b/main.go
@@ -5,13 +5,13 @@ 	"archive/tar"
 	"bufio"
 	"compress/gzip"
 	"errors"
-	"flag"
 	"io"
 	"net/http"
 	"os"
 
 	"git.sr.ht/~gabrielgio/apkdoc/parser"
 	"git.sr.ht/~gabrielgio/apkdoc/templates"
+	flag "github.com/spf13/pflag"
 )
 
 func fechIndex(url string) (io.ReadCloser, error) {
@@ -28,9 +28,9 @@ 	return resp.Body, nil
 }
 
 func main() {
-	url := flag.String("url", "", "Url to the APKINDEX.tar.gz")
-	output := flag.String("output", "index.md", "Output path")
-	repositoryFormat := flag.String("repository-format", "https://git.sr.ht/~gabrielgio/apkbuilds/tree/%s/item/apks/%s", "Template to build repository link")
+	url := flag.StringP("url", "u", "", "Url to the APKINDEX.tar.gz")
+	output := flag.StringP("output", "o", "index.md", "Output path")
+	repositoryFormat := flag.StringP("repository-format", "f", "https://git.sr.ht/~gabrielgio/apkbuilds/tree/%s/item/apks/%s", "Template to build repository link")
 	flag.Parse()
 
 	tarStream, err := fechIndex(*url)