diff --git a/.build.yml b/.build.yml
new file mode 100644
index 0000000000000000000000000000000000000000..4f54759a6c74f1ac0a1b24d13fc7eacff544d3f1
--- /dev/null
+++ b/.build.yml
@@ -0,0 +1,22 @@
+image: archlinux
+packages:
+sources:
+artifacts:
+tasks:
cd photo-stats
perl -c phosta.pl
mkdir bin
/usr/bin/vendor_perl/pp -z 9 -f Bleach -o phosta phosta.pl
TAG=`date +"%Y%m%d"`
cd photo-stats
tar -czf ${TAG}_linux_amd64.tar.gz phosta
makepkg -g
makepkg
tar -cf output.tar *.tar.gz *.tar.zst
diff --git a/LICENSE b/LICENSE
new file mode 100755
index 0000000000000000000000000000000000000000..027d71d0073f90db1ea80f7524f6fceccb001e93
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,29 @@
+BSD 3-Clause License
+Copyright (c) 2018-2020, René Wagner
+All rights reserved.
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+* Redistributions of source code must retain the above copyright notice, this
+* Redistributions in binary form must reproduce the above copyright notice,
+* Neither the name of the copyright holder nor the names of its
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 0000000000000000000000000000000000000000..f47df46eea32236e8ee780c1c6446fe7c0a7be41
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,19 @@
+# Maintainer: René Wagner < rwagner at rw-net dot de >
+pkgname=photo-stats
+pkgver=20200718
+pkgrel=1
+pkgdesc='photo stats for '
+arch=('x86_64')
+license=('BSD')
+url='https://git.sr.ht/~rwa/photo-stats'
+provides=('photo-stats')
+options=(!strip)
+source=('phosta')
+sha256sums=('SKIP')
+package() {
+}
diff --git a/phosta.pl b/phosta.pl
new file mode 100755
index 0000000000000000000000000000000000000000..2d782d5f1fe7faf23afa2d8e36ada959c4814509
--- /dev/null
+++ b/phosta.pl
@@ -0,0 +1,78 @@
+#!/usr/bin/perl
+# Copyright(c) René Wagner 2019-2020
+# https://git.sr.ht/~rwa/photo-stats
+# published under BSD 3-Clause License - https://git.sr.ht/~rwa/photo-stats/tree/master/LICENSE
+use warnings;
+use strict;
+use feature qw(say);
+use Cwd;
+use File::Basename;
+use File::Copy;
+use File::Find;
+use File::Find::Rule;
+use File::Spec::Functions;
+use File::HomeDir;
+use Getopt::Std;
+$Getopt::Std::STANDARD_HELP_VERSION = 'true';
+my $VERSION = '0.1';
+my $PROGRAM = 'Photo Stats';
+my $configfile = catfile(File::HomeDir->my_home, '.photo-stats.conf');
+# read commandline switches
+my $opt_s=0;
+getconfig($configfile);
+#getopts('slr:f:c:') or die "Invalid parameters provided! See 'art_file_mover.pl --help' for more details.";
+# read remaining commandline args for source dir
+# last dir will win
+my $destination_dir = getcwd;
+foreach my $arg ( @ARGV )
+{
+}
+if ( $opt_s ) { writeconfig($configfile); }
+#move_files($destination_dir);
+exit 0;
+sub getconfig
+{
+}
+sub writeconfig
+{
+}
+sub main::VERSION_MESSAGE()
+{
+}
+sub main::HELP_MESSAGE
+{
+}
text/gemini
This content has been proxied by September (ba2dc).