add id3fs-tag to build system
[id3fs.git] / bin / id3fs-tag
index 29cc455..3656ea7 100644 (file)
@@ -16,6 +16,7 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
+use lib '/home/ianb/projects/id3fs/id3fs/lib'; # FIXME: remove
 use strict;
 use Getopt::Long qw(Configure);
 use ID3FS::AudioFile;
@@ -177,11 +178,11 @@ __END__
 
 =head1 NAME
 
-id3fs-index - Add files to id3fs index
+id3fs-tag - Add files to id3fs index
 
 =head1 SYNOPSIS
 
-B<id3fs-index> [B<-lvh>] S<[B<-d >I<basedir>]> S<[B<-f >I<dbpath>]> S<[B<-e >I<mp3,ogg,flac>]> [B<-->] [I<DIR>...]
+B<id3fs-tag> [B<-lvh>] S<[B<-d >I<basedir>]> S<[B<-f >I<dbpath>]> S<[B<-e >I<mp3,ogg,flac>]> [B<-->] [I<DIR>...]
 
 =head1 DESCRIPTION
 
@@ -237,24 +238,24 @@ End of options.
 
 Index all files in the current directory:
 
-    id3fs-index .
+    id3fs-tag .
 
 Index current directory, printing each subdirectory as it recurses
 into it:
 
-    id3fs-index -v .
+    id3fs-tag -v .
 
 Just index some sub-directories:
 
-    id3fs-index -d . dir1 dir2
+    id3fs-tag -d . dir1 dir2
 
 Store the database in a custom location:
 
-    id3fs-index -f ~/.id3fs/index.sqlite .
+    id3fs-tag -f ~/.id3fs/index.sqlite .
 
 Only index .mp3 and .flac files:
 
-    id3fs-index -e mp3,flac .
+    id3fs-tag -e mp3,flac .
 
 =head1 BUGS